home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Applications 1996 May / SGI IRIX 6.2 Applications 1996 May.iso / dist / patchSG0001239.idb / usr / lib / SoftWindows2 / bin / scripts / nupwarn.sh.z / nupwarn.sh
Encoding:
Linux/UNIX/POSIX Shell Script  |  1996-05-07  |  403 b   |  10 lines

  1. #!/bin/sh
  2. PATH=/usr/sbin:/usr/bsd:/sbin:/usr/bin:/bin:/usr/bin/X11
  3. export PATH
  4. XCONFIRM=/usr/bin/X11/xconfirm
  5. case `$XCONFIRM -c -B "Yes" -b "No" -header "SoftWindows Update" -t "This hard disk container file (C:)" -t "will not be updated. This can" -t "cause severe problems including" -t "loss of data." -t "" -t "Upgrade now?" -icon question -geometry "320x190"`
  6. in
  7.     Yes) exit 2;;
  8.     No) exit 1;;
  9. esac
  10.